Pyenv
Working with Virtual Environments**
Why Use Virtual Environments?
Virtual environments allow you to isolate project dependencies and avoid conflicts.
Installing pyenv-virtualenv
pyenv install virtualenv
Creating a Virtual Environment
pyenv virtualenv 3.11.5 myenv
Activating a Virtual Environment
pyenv activate myenv
Deactivating a Virtual Environment
pyenv deactivate